home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / min / test_funcs.c < prev    next >
Encoding:
C/C++ Source or Header  |  2001-11-01  |  1.9 KB  |  86 lines

  1. /* min/test_funcs.c
  2.  * 
  3.  * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough
  4.  * 
  5.  * This program is free software; you can redistribute it and/or modify
  6.  * it under the terms of the GNU General Public License as published by
  7.  * the Free Software Foundation; either version 2 of the License, or (at
  8.  * your option) any later version.
  9.  * 
  10.  * This program is distributed in the hope that it will be useful, but
  11.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * General Public License for more details.
  14.  * 
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software
  17.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  */
  19.  
  20. #include <gsl/gsl_math.h>
  21. #include <gsl/gsl_min.h>
  22.  
  23. #include "test.h"
  24.  
  25. gsl_function create_function (double (*f)(double, void *)) 
  26. {
  27.   gsl_function F ;
  28.   F.function = f ;
  29.   F.params = 0 ;
  30.   return F ;
  31. }
  32.  
  33. double
  34. f_cos (double x, void * p)
  35. {
  36.   p = 0;  /* avoid warning about unused parameter */
  37.   return cos(x);
  38. }
  39.  
  40. /* f(x) = x^4 - 1 */
  41. /* minimum at x = 0 */
  42.  
  43. double
  44. func1 (double x, void * p)
  45. {
  46.   p = 0;  /* avoid warning about unused parameter */
  47.   return pow (x, 4.0) - 1;
  48. }
  49.  
  50. /* f(x) = sqrt(|x|) */
  51. /* minimum at x = 0 */
  52.  
  53. double
  54. func2 (double x, void * p)
  55. {
  56.   p = 0;  /* avoid warning about unused parameter */
  57.   return sqrt(fabs(x));
  58. }
  59.  
  60.  
  61. /* f(x) = 1 for x < 1 and -exp(-x) for x >= 1 */
  62. /* minimum at x = 1 */
  63.  
  64. double
  65. func3 (double x, void * p)
  66. {
  67.   p = 0;  /* avoid warning about unused parameter */
  68.  
  69.   if (x < 1)
  70.     return 1 ;
  71.   else
  72.     return - exp(-x) ;
  73. }
  74.  
  75. /* f(x) = x - 30/(1+1e5*(x-0.8)**2) */
  76. /* minimum near x = 0.8 */
  77.  
  78. double
  79. func4 (double x, void * p)
  80. {
  81.   p = 0;  /* avoid warning about unused parameter */
  82.  
  83.   return x - 30.0 / (1.0 + 1e5 * pow(x-0.8, 2.0));
  84. }
  85.  
  86.